From: Jim Blandy Date: Mon, 3 May 1993 03:40:40 +0000 (+0000) Subject: * subr.el (listify-key-sequence): Use a character constant to X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96426 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=15e0fbfaff4bdc6f0e5557ef65b5bfac8a753ee3;p=emacs.git * subr.el (listify-key-sequence): Use a character constant to decide which bits to flip, not an integer constant. --- diff --git a/lisp/subr.el b/lisp/subr.el index 932bf0b96c4..74c8968fc1c 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -236,7 +236,7 @@ The normal global definition of the character C-x indirects to this keymap.") (append key nil) (mapcar (function (lambda (c) (if (> c 127) - (logxor c 8388736) + (logxor c ?\M-\200) c))) (append key nil))))